Filter hook 'handle_network_bulk_actions-{$screen}'
in WP Core File wp-admin/network/site-themes.php at line 139
Description
Fires when a custom bulk action should be handled. The redirect link should be modified with success or failure feedback from the action to be used to display feedback to the user. The dynamic portion of the hook name, `$screen`, refers to the current screen ID.
Occurrences
Filename |
Line Number |
wp-admin/network/site-themes.php |
139 |
Parameters
Type |
Name |
Description |
string |
$redirect_url |
The redirect URL. |
string |
$action |
The action being taken. |
array |
$items |
The items to take the action on. |
int |
$site_id |
The site ID. |
PHP Doc
/**
* Fires when a custom bulk action should be handled.
*
* The redirect link should be modified with success or failure feedback
* from the action to be used to display feedback to the user.
*
* The dynamic portion of the hook name, `$screen`, refers to the current screen ID.
*
* @since 4.7.0
*
* @param string $redirect_url The redirect URL.
* @param string $action The action being taken.
* @param array $items The items to take the action on.
* @param int $site_id The site ID.
*/